home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / ClassEditor.0.4 / Source / RZBrowserCell.subproj / RZSortableObjects.h < prev    next >
Encoding:
Text File  |  1995-04-04  |  581 b   |  18 lines

  1. /*
  2.  * RZSortableObjects - This protocol defines a method implemented 
  3.  *     by all objects that want to be inserted into an RZSortedList.
  4.  *     The sortIndex method returns an integer used to compare objects
  5.  *     and determine sort order.
  6.  *
  7.  * You may freely copy, distribute and reuse the code in this example.
  8.  * This code is provided AS IS without warranty of any kind, expressed 
  9.  * or implied, as to its fitness for any particular use.
  10.  *
  11.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  12.  *
  13.  */
  14.  
  15. @protocol RZSortableObjects
  16. - (unsigned int)sortIndex;
  17. @end
  18.